home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gp_unifs.c < prev    next >
C/C++ Source or Header  |  1996-10-29  |  12KB  |  420 lines

  1. /* Copyright (C) 1993, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gp_unifs.c */
  20. /* "Unix-like" file system platform routines for Ghostscript */
  21. #include "memory_.h"
  22. #include "string_.h"
  23. #include "gx.h"
  24. #include "gp.h"
  25. #include "gsstruct.h"
  26. #include "gsutil.h"    /* for string_match */
  27. #include "stat_.h"
  28. #include "dirent_.h"
  29. #include <sys/param.h>    /* for MAXPATHLEN */
  30.  
  31. /* Some systems (Interactive for example) don't define MAXPATHLEN,
  32.  * so we define it here.  (This probably should be done via a Config-Script.)
  33.  */
  34.  
  35. #ifndef MAXPATHLEN
  36. #  define MAXPATHLEN 1024
  37. #endif
  38.  
  39. /* Library routines not declared in a standard header */
  40. extern char *getenv(P1(const char *));
  41. extern char *mktemp(P1(char *));
  42.  
  43. /* ------ File naming and accessing ------ */
  44.  
  45. /* Define the default scratch file name prefix. */
  46. const char gp_scratch_file_name_prefix[] = "gs_";
  47.  
  48. /* Define the name of the null output file. */
  49. const char gp_null_file_name[] = "/dev/null";
  50.  
  51. /* Define the name that designates the current directory. */
  52. const char gp_current_directory_name[] = ".";
  53.  
  54. /* Create and open a scratch file with a given name prefix. */
  55. /* Write the actual file name at fname. */
  56. FILE *
  57. gp_open_scratch_file(const char *prefix, char *fname, const char *mode)
  58. {    char *temp;
  59.     if ( (temp = getenv("TEMP")) == NULL )
  60.         strcpy(fname, "/tmp/");
  61.     else
  62.     {    strcpy(fname, temp);
  63.         if ( strlen(fname) != 0 && fname[strlen(fname) - 1] != '/' )
  64.             strcat(fname, "/");
  65.     }
  66.     strcat(fname, prefix);
  67.     /* Prevent trailing X's in path from being converted by mktemp. */
  68.     if ( *fname != 0 && fname[strlen(fname) - 1] == 'X' )
  69.         strcat(fname, "-");
  70.     strcat(fname, "XXXXXX");
  71.     mktemp(fname);
  72.     return fopen(fname, mode);
  73. }
  74.  
  75. /* Open a file with the given name, as a stream of uninterpreted bytes. */
  76. FILE *
  77. gp_fopen(const char *fname, const char *mode)
  78. {    return fopen(fname, mode);
  79. }
  80.  
  81. /* ------ File enumeration ------ */
  82.  
  83. /* Thanks to Fritz Elfert (Fritz_Elfert@wue.maus.de) for */
  84. /* the original version of the following code, and Richard Mlynarik */
  85. /* (mly@adoc.xerox.com) for an improved version. */
  86.  
  87. typedef struct dirstack_s dirstack;
  88. struct dirstack_s {
  89.     dirstack *next;
  90.     DIR *entry;
  91. };
  92. gs_private_st_ptrs1(st_dirstack, dirstack, "dirstack",
  93.   dirstack_enum_ptrs, dirstack_reloc_ptrs, next);
  94.  
  95. struct file_enum_s {
  96.     DIR *dirp;        /* pointer to current open directory   */
  97.     char *pattern;        /* original pattern                    */
  98.     char *work;        /* current path                        */
  99.     int worklen;            /* strlen (work)               */
  100.     dirstack *dstack;    /* directory stack                     */
  101.     int patlen;
  102.     int pathead;            /* how much of pattern to consider
  103.                  *  when listing files in current directory */
  104.     bool first_time;
  105.     gs_memory_t *memory;
  106. };
  107. gs_private_st_ptrs3(st_file_enum, struct file_enum_s, "file_enum",
  108.   file_enum_enum_ptrs, file_enum_reloc_ptrs, pattern, work, dstack);
  109.  
  110. /* Private procedures */
  111.  
  112. /* Do a wild-card match. */
  113. #ifdef DEBUG
  114. private bool
  115. wmatch(const byte *str, uint len, const byte *pstr, uint plen,
  116.   const string_match_params *psmp)
  117. {    bool match = string_match(str, len, pstr, plen, psmp);
  118.     if ( gs_debug_c('e') )
  119.       { dputs("[e]string_match(\"");
  120.         fwrite(str, 1, len, dstderr);
  121.         dputs("\", \"");
  122.         fwrite(pstr, 1, plen, dstderr);
  123.         dprintf1("\") = %s\n", (match ? "TRUE" : "false"));
  124.       }
  125.     return match;
  126. }
  127. #define string_match wmatch
  128. #endif
  129.  
  130. /* Search a string backward for a character. */
  131. /* (This substitutes for strrchr, which some systems don't provide.) */
  132. private char *
  133. rchr(char *str, char ch, int len)
  134. {    register char *p = str + len;
  135.     while ( p > str )
  136.       if ( *--p == ch ) return p;
  137.     return 0;
  138. }
  139.  
  140. /* Pop a directory from the enumeration stack. */
  141. private bool
  142. popdir(file_enum *pfen)
  143. {    dirstack *d = pfen->dstack;
  144.     if ( d == 0 )
  145.       return false;
  146.     pfen->dirp = d->entry;
  147.     pfen->dstack = d->next;
  148.     gs_free_object(pfen->memory, d, "gp_enumerate_files(popdir)");
  149.     return true;
  150. }
  151.  
  152. /* Initialize an enumeration. */
  153. file_enum *
  154. gp_enumerate_files_init(const char *pat, uint patlen, gs_memory_t *mem)
  155. {    file_enum *pfen;
  156.     char *p;
  157.     char *work;
  158.  
  159.     /* Reject attempts to enumerate paths longer than the */
  160.     /* system-dependent limit. */
  161.     if ( patlen > MAXPATHLEN )
  162.         return 0;
  163.  
  164.     /* Reject attempts to enumerate with a pattern containing zeroes. */
  165.     {    const char *p1;
  166.         for (p1 = pat; p1 < pat + patlen; p1++)
  167.             if (*p1 == 0) return 0;
  168.     }
  169.         /* >>> Should crunch strings of repeated "/"'s in pat to a single "/"
  170.          * >>>  to match stupid unix filesystem "conventions" */
  171.  
  172.     pfen = gs_alloc_struct(mem, file_enum, &st_file_enum,
  173.                    "gp_enumerate_files");
  174.     if (pfen == 0)
  175.         return 0;
  176.  
  177.     /* pattern and work could be allocated as strings, */
  178.     /* but it's simpler for GC and freeing to allocate them as bytes. */
  179.  
  180.     pfen->pattern =
  181.       (char *)gs_alloc_bytes(mem, patlen + 1,
  182.                  "gp_enumerate_files(pattern)");
  183.     if (pfen->pattern == 0)
  184.         return 0;
  185.     memcpy(pfen->pattern, pat, patlen);
  186.     pfen->pattern[patlen] = 0;
  187.  
  188.     work = (char *)gs_alloc_bytes(mem, MAXPATHLEN+1,
  189.                       "gp_enumerate_files(work)");
  190.     if (work == 0)
  191.         return 0;
  192.     pfen->work = work;
  193.  
  194.     p = work;
  195.     memcpy(p, pat, patlen);
  196.     p += patlen;
  197.     *p = 0;
  198.  
  199.     /* Remove directory specifications beyond the first wild card. */
  200.     /* Some systems don't have strpbrk, so we code it open. */
  201.     p = pfen->work;
  202.     while ( !(*p == '*' || *p == '?' || *p == 0) ) p++;
  203.     while ( !(*p == '/' || *p == 0) ) p++;
  204.     if ( *p == '/' )
  205.       *p = 0;
  206.         /* Substring for first wildcard match */
  207.         pfen->pathead = p - work;
  208.  
  209.     /* Select the next higher directory-level. */
  210.         p = rchr(work, '/', p - work);
  211.         if (!p)
  212.       {    /* No directory specification */
  213.         work[0] = 0;
  214.         pfen->worklen = 0;
  215.       }
  216.         else
  217.       {    if (p == work)
  218.           {    /* Root directory -- don't turn "/" into "" */
  219.             p++;
  220.           }
  221.         *p = 0;
  222.         pfen->worklen = p - work;
  223.       }
  224.  
  225.     pfen->memory = mem;
  226.     pfen->dstack = 0;
  227.     pfen->first_time = true;
  228.     pfen->patlen = patlen;
  229.     return pfen;
  230. }
  231.  
  232. /* Enumerate the next file. */
  233. uint
  234. gp_enumerate_files_next(file_enum *pfen, char *ptr, uint maxlen)
  235. {    const dir_entry *de;
  236.     char *work = pfen->work;
  237.     int worklen = pfen->worklen;
  238.     char *pattern = pfen->pattern;
  239.     int pathead = pfen->pathead;
  240.     int len;
  241.     struct stat stbuf;
  242.  
  243.     if ( pfen->first_time )
  244.       {    pfen->dirp = ((worklen == 0) ? opendir(".") : opendir(work));
  245.         if_debug1('e', "[e]file_enum:First-Open '%s'\n", work);
  246.         pfen->first_time = false;
  247.         if (pfen->dirp == 0)    /* first opendir failed */
  248.           {    gp_enumerate_files_close(pfen);
  249.             return ~(uint)0;
  250.           }
  251.       }
  252.  
  253.  top:    de = readdir(pfen->dirp);
  254.     if (de == 0)
  255.       {    /* No more entries in this directory */
  256.         char *p;
  257.  
  258.         if_debug0('e', "[e]file_enum:Closedir\n");
  259.         closedir(pfen->dirp);
  260.         /* Back working directory and matching pattern up one level */
  261.         p = rchr(work,'/', worklen);
  262.         if (p != 0)
  263.           {    if (p == work) p++;
  264.             *p = 0;
  265.             worklen = p - work;
  266.           }
  267.                 else
  268.                   worklen = 0;
  269.         p = rchr(pattern,'/', pathead);
  270.         if (p != 0)
  271.           pathead = p - pattern;
  272.         else
  273.           pathead = 0;
  274.  
  275.         if (popdir(pfen))
  276.           {    /* Back up the directory tree. */
  277.             if_debug1('e', "[e]file_enum:Dir popped '%s'\n", work);
  278.             goto top;
  279.           }
  280.         else
  281.           {    if_debug0('e', "[e]file_enum:Dirstack empty\n");
  282.             gp_enumerate_files_close(pfen);
  283.             return ~(uint)0;
  284.           }
  285.       }
  286.  
  287.     /* Skip . and .. */
  288.     len = strlen(de->d_name);
  289.     if (len <= 2 && (!strcmp(de->d_name,".") || !strcmp(de->d_name,"..") ))
  290.       goto top;
  291.     if (len + worklen + 1 > MAXPATHLEN)
  292.       /* Should be an error, I suppose */
  293.       goto top;
  294.     if (worklen == 0)
  295.       {    /* "Current" directory (evil un*x kludge) */
  296.         memcpy(work, de->d_name, len + 1);
  297.       }
  298.     else if (worklen == 1 && work[0] == '/')
  299.       {    /* Root directory */
  300.         memcpy(work + 1, de->d_name, len + 1);
  301.         len = len + 1;
  302.       }
  303.     else
  304.       {    work[worklen] = '/';
  305.         memcpy(work + worklen + 1, de->d_name, len + 1);
  306.         len = worklen + 1 + len;
  307.       }
  308.  
  309.     /* Test for a match at this directory level */
  310.     if (!string_match((byte *)work, len, (byte *)pattern, pathead, NULL))
  311.       goto top;
  312.  
  313.     /* Perhaps descend into subdirectories */
  314.     if (pathead < pfen->patlen)
  315.       {    DIR *dp;
  316.  
  317.         if (((stat(work,&stbuf) >= 0)
  318.              ? !stat_is_dir(stbuf)
  319.              /* Couldn't stat it.
  320.               * Well, perhaps it's a directory and
  321.               * we'll be able to list it anyway.
  322.               * If it isn't or we can't, no harm done. */
  323.              : 0))
  324.           goto top;
  325.  
  326.         if (pfen->patlen == pathead + 1)
  327.           {    /* Listing "foo/?/" -- return this entry */
  328.             /* if it's a directory. */
  329.             if (!stat_is_dir (stbuf))
  330.               {    /* Do directoryp test the hard way */
  331.                 dp = opendir(work);
  332.                 if (!dp) goto top;
  333.                 closedir(dp);
  334.               }
  335.             work[len++] = '/';
  336.             goto winner;
  337.           }
  338.  
  339.         /* >>> Should optimise the case in which the next level */
  340.         /* >>> of directory has no wildcards. */
  341.         dp = opendir(work);
  342. #ifdef DEBUG
  343.         {    char save_end = pattern[pathead];
  344.             pattern[pathead] = 0;
  345.             if_debug2('e', "[e]file_enum:fname='%s', p='%s'\n",
  346.                   work, pattern);
  347.             pattern[pathead] = save_end;
  348.         }
  349. #endif /* DEBUG */
  350.         if (!dp)
  351.           /* Can't list this one */
  352.           goto top;
  353.         else
  354.           {    /* Advance to the next directory-delimiter */
  355.             /* in pattern */
  356.             char *p;
  357.                         dirstack *d;
  358.             for (p = pattern + pathead + 1; ; p++)
  359.               {    if (*p == 0)
  360.                   {    /* No more subdirectories to match */
  361.                     pathead = pfen->patlen;
  362.                     break;
  363.                   }
  364.                 else if (*p == '/')
  365.                   {    pathead = p - pattern;
  366.                     break;
  367.                   }
  368.               }
  369.  
  370.                         /* Push a directory onto the enumeration stack. */
  371.                         d = gs_alloc_struct(pfen->memory, dirstack,
  372.                                             &st_dirstack,
  373.                                             "gp_enumerate_files(pushdir)");
  374.                         if ( d != 0 )
  375.                         {
  376.                           d->next  = pfen->dstack;
  377.                           d->entry = pfen->dirp;
  378.                           pfen->dstack = d;
  379.                         }
  380.                         else
  381.                           DO_NOTHING; /* >>> e_VMerror!!! */
  382.  
  383.             if_debug1('e', "[e]file_enum:Dir pushed '%s'\n",
  384.                   work);
  385.             worklen = len;
  386.             pfen->dirp = dp;
  387.             goto top;
  388.           }
  389.       }
  390.  
  391.  winner:
  392.     /* We have a winner! */
  393.     pfen->worklen = worklen;
  394.     pfen->pathead = pathead;
  395.     memcpy(ptr, work, len);
  396.     return len;
  397. }
  398.  
  399. /* Clean up the file enumeration. */
  400. void
  401. gp_enumerate_files_close(file_enum *pfen)
  402. {    gs_memory_t *mem = pfen->memory;
  403.  
  404.     if_debug0('e', "[e]file_enum:Cleanup\n");
  405.     while (popdir(pfen))    /* clear directory stack */
  406.           DO_NOTHING;
  407.     gs_free_object(mem, (byte *)pfen->work,
  408.                "gp_enumerate_close(work)");
  409.     gs_free_object(mem, (byte *)pfen->pattern,
  410.                "gp_enumerate_files_close(pattern)");
  411.     gs_free_object(mem, pfen, "gp_enumerate_files_close");
  412. }
  413.  
  414. /* Test-cases:
  415.    (../?*r*?/?*.ps) {==} 100 string filenameforall
  416.    (../?*r*?/?*.ps*) {==} 100 string filenameforall
  417.    (../?*r*?/) {==} 100 string filenameforall
  418.    (/t*?/?*.ps) {==} 100 string filenameforall
  419. */
  420.